Compile the vrml java script with Cyber Passage

$Id: classpath.html,v 1.1 1996/06/04 07:11:02 tnoma Exp $

Notice: Please use JDK1.0 to compile Java.

The 'vrml' package is in CyberPassage_installed_path\lib\java\vsclass.zip. (In default, it's c:\Program Files\Sony\CyberPassage\lib\java\vsclass.zip).

(1) Use unziper to extract the file. For example, using WinZip on Windows95.

+ To extract all files in a vsclass.zip without leaving the Explorer: use the RIGHT mouse button to drag and drop a :

"c:\Program Files\Sony\CyberPassage\lib\java\vsclass.zip"

file from an Explorer window to any directory, then choose "Extract to" from the context menu. Be sure to use the RIGHT mouse button while dragging.

(2) Add the path to a 'classpath' option when you compile a script or a 'classpath' environment variable.

- 'classpath' option

> javac -classpath "vsclass_zip_extract_path;CyberPassage_installed_path\lib\java\classes.zip" foo.java

For example, in default

> javac -classpath "c:\Program Files\Sony\CyberPassage\lib\java;c:\Program Files\Sony\CyberPassage\lib\java\classes.zip" foo.java

- 'classpath' environment variable

> set classpath=vsclass_zip_extract_path;CyberPassage_installed_path\lib\java\classes.zip

For example, in default

> set classpath=c:\Program Files\Sony\CyberPassage\lib\java;c:\Program Files\Sony\CyberPassage\lib\java\classes.zip

See also the following document:

  • javac